You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For your pull request to not get closed without review, please confirm that:
An issue exists where the maintainers agreed that this should be implemented.
If such issue did not exist before, I opened one.
I tested that my contribution works locally, and does not break anything,
otherwise I have marked my PR as draft.
If my contribution is non-trivial, I did not use AI to write most of it.
I understand that I will be permanently banned from interacting with this
organization if I lied by checking any of these checkboxes.
The pull request contents are only relevant to the Linux platform, and can in
no way be applied to other platforms.
[short description of your PR goes here]
As of right now if a user install helium with a package manager like soar or am the Exec on the .desktop file will be changed with the path to the executable and this messes up %U, making links not open properly. This pr fixes that.
Left: .desktop from --appimage-extract
Right: .desktop from helium installed via packages.toml which has; helium = { github = "imputnet/helium-linux", asset_pattern = "*x86_64.AppImage", version = "*" }
Twig6943
changed the title
[packaging] Remove sed for exec as it breaks links not opening if installed with appimage package managers
[packaging] Remove sed for exec as it breaks links not opening if installed with appimage package managers & add %U
Feb 11, 2026
Exec=AppRun to the desktop entry makes no sense, appimage itself doesn't do anyhting with it. All the appimage runtime does is execute the AppRun in the filesystem, you can in fact ship an appimage without a .desktop entry and it will work without issue, appimagetool doesn't allow it because it runs desktop-file-validate on it but that can be easily be bypassed.
Additionally tools like sharun or go-appimage parse the Exec= key in the desktop entry since they replace AppRun with their own generic implementation and need to know the name of the binary to launch.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
For your pull request to not get closed without review, please confirm that:
If such issue did not exist before, I opened one.
otherwise I have marked my PR as draft.
organization if I lied by checking any of these checkboxes.
no way be applied to other platforms.
[short description of your PR goes here]
As of right now if a user install helium with a package manager like soar or am the Exec on the .desktop file will be changed with the path to the executable and this messes up %U, making links not open properly. This pr fixes that.
Left: .desktop from --appimage-extract
Right: .desktop from helium installed via packages.toml which has;
helium = { github = "imputnet/helium-linux", asset_pattern = "*x86_64.AppImage", version = "*" }